-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path4.1.10 (c+d x)^m (a+b sin)^n.nb
More file actions
10724 lines (10461 loc) · 487 KB
/
4.1.10 (c+d x)^m (a+b sin)^n.nb
File metadata and controls
10724 lines (10461 loc) · 487 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(* Content-type: application/mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 7.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 145, 7]
NotebookDataLength[ 488062, 10715]
NotebookOptionsPosition[ 474604, 10370]
NotebookOutlinePosition[ 476319, 10424]
CellTagsIndexPosition[ 476276, 10421]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[BoxData[
StyleBox[
RowBox[{Cell[TextData[StyleBox["Rules for integrands of the form",
FontFamily->"Arial",
FontSize->16]], "None"],
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], ")"}], "n"]}],
FontSize->16]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193415004828687`*^9, 3.5193415113404875`*^9}, {
3.5193513965602303`*^9, 3.519351397420232*^9}, {3.5194037839416766`*^9,
3.5194037847117205`*^9}, {3.5233155055329347`*^9, 3.523315506402936*^9}, {
3.523318726949605*^9, 3.5233187276796064`*^9}, {3.523920400879534*^9,
3.5239204094439487`*^9}, 3.52392096260852*^9, 3.523921038171853*^9,
3.5340477459008017`*^9, 3.5340515540554085`*^9, {3.536542511100503*^9,
3.53654251626051*^9}, {3.536775961244521*^9, 3.5367759616145215`*^9}, {
3.544373142375139*^9, 3.5443731599851637`*^9}, {3.5721095751430073`*^9,
3.5721095751430073`*^9}, {3.57578648209792*^9, 3.575786503859958*^9},
3.575786540270422*^9, {3.5757866379421935`*^9, 3.5757866609522343`*^9},
3.5758478960540276`*^9, 3.57584912634415*^9, 3.575849218264279*^9, {
3.575849275424359*^9, 3.57584927603436*^9}, {3.5758493222644243`*^9,
3.5758493249844284`*^9}, 3.5758494042945395`*^9, 3.6735684665235987`*^9,
3.6740561511462793`*^9},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{Cell[TextData[StyleBox["1.",
FontFamily->"Arial"]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"b", " ",
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], ")"}], "n"],
RowBox[{"\[DifferentialD]", "x"}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193415004828687`*^9, 3.5193415113404875`*^9}, {
3.5193513965602303`*^9, 3.519351397420232*^9}, {3.5194037839416766`*^9,
3.5194037847117205`*^9}, 3.52105258275843*^9, 3.5210531741726685`*^9, {
3.521057461672199*^9, 3.5210574760242243`*^9}, {3.521059881564049*^9,
3.521059886088057*^9}, {3.5213902158895197`*^9, 3.521390217543123*^9}, {
3.521390827878595*^9, 3.521390829376197*^9}, {3.5214688792561245`*^9,
3.521468879443325*^9}, {3.523320201951167*^9, 3.523320202247567*^9}, {
3.5288596764894824`*^9, 3.5288596768094826`*^9}, {3.529196266260353*^9,
3.5291962665099535`*^9}, {3.5291997050223927`*^9,
3.5291997052563934`*^9}, {3.529201346457276*^9, 3.529201347252877*^9}, {
3.529285041073242*^9, 3.5292850412632427`*^9}, {3.529285215443486*^9,
3.529285215443486*^9}, {3.5295115356999426`*^9, 3.5295115433443794`*^9}, {
3.529521412127842*^9, 3.529521414647986*^9}, {3.529529429975619*^9,
3.529529432955224*^9}, 3.5340074894011116`*^9, 3.5415537711400824`*^9, {
3.5415538409034047`*^9, 3.541553841106205*^9}, {3.5415564120531206`*^9,
3.5415564206955357`*^9}, 3.5415565488341613`*^9, {3.5415605631516123`*^9,
3.5415605860836525`*^9}, {3.541561323247347*^9, 3.5415613234501476`*^9},
3.5416162115728135`*^9, 3.5416917928353863`*^9, 3.5416918654707212`*^9, {
3.5417873058670864`*^9, 3.541787319807106*^9}, {3.541789540400215*^9,
3.5417895530802326`*^9}, 3.541789616030321*^9, {3.5417897122304554`*^9,
3.5417897124504557`*^9}, {3.5417925317651196`*^9,
3.5417925320051203`*^9}, {3.5417934393063903`*^9, 3.5417934399563913`*^9},
3.56053716793855*^9, 3.5605430857613792`*^9, {3.5605453972046156`*^9,
3.5605454021846223`*^9}, {3.5606182150525985`*^9, 3.560618219852605*^9}, {
3.5606182689326735`*^9, 3.560618269682675*^9}, {3.563574880419276*^9,
3.563574880869276*^9}, 3.5906378878042774`*^9, {3.6735672127378864`*^9,
3.6735672130019016`*^9}, {3.673926051730245*^9, 3.6739260531002474`*^9},
3.673928176102466*^9, 3.673928984947709*^9, 3.674055933577895*^9},
FontSize->12,
FontWeight->"Bold"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"\t",
RowBox[{Cell[TextData[StyleBox["1.",
FontFamily->"Arial"]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"b", " ",
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], ")"}], "n"],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"],
StyleBox[" ",
FontFamily->"Arial",
FontWeight->"Plain"], Cell[TextData[Cell[BoxData[
RowBox[{"n", ">", "0"}]]]], "None"]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193415004828687`*^9, 3.5193415113404875`*^9}, {
3.5193513965602303`*^9, 3.519351397420232*^9}, {3.5194037839416766`*^9,
3.5194037847117205`*^9}, 3.52105258275843*^9, 3.5210531741726685`*^9, {
3.521057461672199*^9, 3.5210574760242243`*^9}, {3.521059881564049*^9,
3.521059886088057*^9}, {3.5213902158895197`*^9, 3.521390217543123*^9}, {
3.521390827878595*^9, 3.521390829376197*^9}, {3.5214688792561245`*^9,
3.521468879443325*^9}, {3.523320201951167*^9, 3.523320202247567*^9}, {
3.5288596764894824`*^9, 3.5288596768094826`*^9}, {3.529196266260353*^9,
3.5291962665099535`*^9}, {3.5291997050223927`*^9,
3.5291997052563934`*^9}, {3.529201346457276*^9, 3.529201347252877*^9}, {
3.529285041073242*^9, 3.5292850412632427`*^9}, {3.529285215443486*^9,
3.529285215443486*^9}, {3.5295115356999426`*^9, 3.5295115433443794`*^9}, {
3.529521412127842*^9, 3.529521414647986*^9}, {3.529529429975619*^9,
3.529529432955224*^9}, 3.5340074894011116`*^9, 3.5415537711400824`*^9, {
3.5415538409034047`*^9, 3.541553841106205*^9}, {3.5415564120531206`*^9,
3.5415564206955357`*^9}, 3.5415565488341613`*^9, {3.5415605631516123`*^9,
3.5415605860836525`*^9}, {3.541561323247347*^9, 3.5415613234501476`*^9},
3.5416162115728135`*^9, 3.5416917928353863`*^9, 3.5416918654707212`*^9, {
3.5417873058670864`*^9, 3.541787319807106*^9}, {3.541789540400215*^9,
3.5417895530802326`*^9}, 3.541789616030321*^9, {3.5417897122304554`*^9,
3.5417897124504557`*^9}, {3.5417925317651196`*^9,
3.5417925320051203`*^9}, {3.5417934393063903`*^9, 3.5417934399563913`*^9},
3.56053716793855*^9, 3.5605430857613792`*^9, {3.5605453972046156`*^9,
3.5605454021846223`*^9}, {3.5606182150525985`*^9, 3.560618219852605*^9}, {
3.5606182689326735`*^9, 3.560618269682675*^9}, {3.563574880419276*^9,
3.563574880869276*^9}, 3.5906378878042774`*^9, {3.6735672127378864`*^9,
3.6735672130019016`*^9}, {3.673926051730245*^9, 3.6739260531002474`*^9},
3.673928176102466*^9, 3.673928984947709*^9, 3.674055955343934*^9},
FontSize->12,
FontWeight->"Bold"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"\t\t",
RowBox[{Cell[TextData[StyleBox["1.",
FontFamily->"Arial"]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}], ")"}], "m"],
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}],
RowBox[{"\[DifferentialD]", "x"}]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193415004828687`*^9, 3.5193415113404875`*^9}, {
3.5193513965602303`*^9, 3.519351397420232*^9}, {3.5194037839416766`*^9,
3.5194037847117205`*^9}, 3.52105258275843*^9, 3.5210531741726685`*^9, {
3.521057461672199*^9, 3.5210574760242243`*^9}, {3.521059881564049*^9,
3.521059886088057*^9}, {3.5213902158895197`*^9, 3.521390217543123*^9}, {
3.521390827878595*^9, 3.521390829376197*^9}, {3.5214688792561245`*^9,
3.521468879443325*^9}, {3.523320201951167*^9, 3.523320202247567*^9}, {
3.5288596764894824`*^9, 3.5288596768094826`*^9}, {3.529196266260353*^9,
3.5291962665099535`*^9}, {3.5291997050223927`*^9,
3.5291997052563934`*^9}, {3.529201346457276*^9, 3.529201347252877*^9}, {
3.529285041073242*^9, 3.5292850412632427`*^9}, {3.529285215443486*^9,
3.529285215443486*^9}, {3.5295115356999426`*^9, 3.5295115433443794`*^9}, {
3.529521412127842*^9, 3.529521414647986*^9}, {3.529529429975619*^9,
3.529529432955224*^9}, 3.5340074894011116`*^9, 3.5415537711400824`*^9, {
3.5415538409034047`*^9, 3.541553841106205*^9}, {3.5415613109389257`*^9,
3.5415613113913264`*^9}, {3.5416243984807787`*^9,
3.5416244195599437`*^9}, {3.5416244713301*^9, 3.5416244737561426`*^9},
3.541626365649132*^9, {3.541628897885443*^9, 3.5416288994754457`*^9},
3.5416290696456833`*^9, 3.541793672066716*^9, 3.541802112599786*^9,
3.541802982861004*^9, {3.541895598092306*^9, 3.541895598422307*^9},
3.553305199506484*^9, {3.5533052412965426`*^9, 3.5533052433165455`*^9},
3.5533078266801624`*^9, 3.5605383991202736`*^9, {3.560545554294835*^9,
3.5605455545648355`*^9}, 3.560546360235964*^9, 3.5605463911460066`*^9,
3.590637888594279*^9, {3.6735672162850895`*^9, 3.673567216573106*^9},
3.673926085297293*^9, 3.6740559563111353`*^9},
FontSize->12,
FontWeight->"Bold"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"\t\t\t",
RowBox[{Cell[TextData[StyleBox["1:",
FontFamily->"Arial",
FontColor->RGBColor[1, 0, 0]]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}], ")"}], "m"],
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"],
StyleBox[" ",
FontFamily->"Arial",
FontWeight->"Plain"], Cell[TextData[Cell[BoxData[
RowBox[{"m", ">", "0"}]]]], "None"]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.4964645213514385`*^9,
3.5192470594155855`*^9, {3.519247288125906*^9, 3.5192473207459517`*^9}, {
3.519247363296011*^9, 3.519247363796012*^9}, 3.519258420199427*^9,
3.5192584863895197`*^9, {3.519320760160028*^9, 3.519320767367241*^9},
3.5193299099191504`*^9, {3.5193300315093203`*^9, 3.519330031709321*^9}, {
3.5193323099968634`*^9, 3.5193324414114943`*^9}, {3.5193415804486094`*^9,
3.5193415824298124`*^9}, {3.5193459537101994`*^9,
3.5193459567210045`*^9}, {3.5193514074002457`*^9,
3.5193514076802464`*^9}, {3.5194037987985263`*^9, 3.519403799124545*^9},
3.519410735765964*^9, {3.5233155477729936`*^9, 3.5233155497329965`*^9}, {
3.5233157343632545`*^9, 3.5233157343632545`*^9}, 3.5239204163859615`*^9, {
3.5239209756969433`*^9, 3.523920976851345*^9}, {3.5239210574690866`*^9,
3.5239210738491154`*^9}, {3.529529514995768*^9, 3.52952953897301*^9}, {
3.529530096003188*^9, 3.5295300961903887`*^9}, 3.534007429411028*^9, {
3.5415552865111437`*^9, 3.541555295262759*^9}, {3.541555421591781*^9,
3.5415554284869933`*^9}, {3.541555475521076*^9, 3.5415554813086863`*^9}, {
3.54162554215584*^9, 3.5416255424808583`*^9}, {3.54162579640209*^9,
3.54162579780217*^9}, {3.5416258692479687`*^9, 3.541625878751336*^9}, {
3.541627818203932*^9, 3.541627821153936*^9}, {3.541627907684057*^9,
3.541627913164065*^9}, {3.541627956094125*^9, 3.5416279872241683`*^9}, {
3.541628077694295*^9, 3.5416281102343407`*^9}, 3.5417941764874225`*^9, {
3.5417942380475082`*^9, 3.5417942467575207`*^9}, {3.5417943330476418`*^9,
3.5417943330476418`*^9}, {3.541803434011636*^9, 3.541803434251636*^9}, {
3.541810224871143*^9, 3.5418102543011837`*^9}, {3.541810875082053*^9,
3.541810875082053*^9}, {3.541811231122552*^9, 3.541811231462552*^9}, {
3.54189560795232*^9, 3.5418956081823206`*^9}, {3.5533052523765583`*^9,
3.553305252776559*^9}, 3.5533078294501657`*^9, {3.553309604572651*^9,
3.553309604742652*^9}, {3.5546827391627474`*^9, 3.554682739312748*^9}, {
3.5546870349591627`*^9, 3.5546870482091813`*^9}, {3.560187229399564*^9,
3.5601872295867643`*^9}, {3.5601882896086254`*^9, 3.5601882897802258`*^9},
3.5605384027202787`*^9, {3.5605459159253416`*^9, 3.560545949185388*^9},
3.56054636484597*^9, 3.560546598396297*^9, {3.560549160179884*^9,
3.5605491603998837`*^9}, 3.5906378891742797`*^9, {3.673567217549162*^9,
3.6735672177881756`*^9}, 3.673926085317293*^9, 3.674055957044337*^9},
FontSize->12,
FontWeight->"Bold"],
Cell["Reference: CRC 392, A&S 4.3.119", "Subsubsection",
CellChangeTimes->{
3.4964418130913677`*^9, {3.496442428087432*^9, 3.4964424330170403`*^9},
3.496528894323882*^9, 3.4975761400971813`*^9, 3.497810067935557*^9,
3.497811532897608*^9}],
Cell["Reference: CRC 396, A&S 4.3.123", "Subsubsection",
CellChangeTimes->{
3.4964418130913677`*^9, {3.496442428087432*^9, 3.4964424330170403`*^9},
3.496528894323882*^9, 3.4975761400971813`*^9, 3.497810067935557*^9,
3.497811532897608*^9, 3.4979832743894076`*^9}],
Cell["Derivation: Integration by parts", "Subsubsection",
CellChangeTimes->{
3.4964418130913677`*^9, {3.496442428087432*^9, 3.4964424330170403`*^9},
3.496528894323882*^9, 3.4975761400971813`*^9, 3.497810067935557*^9,
3.497810452426095*^9}],
Cell[TextData[{
"Basis: ",
Cell[BoxData[
RowBox[{
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}], "\[Equal]",
RowBox[{
RowBox[{"-",
FractionBox["1", "f"]}],
RowBox[{
SubscriptBox["\[PartialD]", "x"],
RowBox[{"Cos", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}]}]]]
}], "Subsubsection",
CellChangeTimes->{
3.4964418130913677`*^9, {3.496442428087432*^9, 3.4964424330170403`*^9},
3.496528894323882*^9, {3.497575979956957*^9, 3.4975760172870092`*^9},
3.497809962345409*^9, 3.4978100933655925`*^9, 3.497810195205735*^9,
3.497811560037646*^9, 3.497811810187996*^9, {3.5418102932112384`*^9,
3.5418103044412537`*^9}, {3.560545966125412*^9, 3.5605459747054243`*^9}, {
3.5605489616496058`*^9, 3.5605489649096103`*^9}, {3.673926085347293*^9,
3.673926085357293*^9}, {3.673926804532322*^9, 3.673926804532322*^9}}],
Cell[TextData[{
"Rule: If ",
Cell[BoxData[
RowBox[{"m", ">", "0"}]]],
", then"
}], "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.4964417379912624`*^9, 3.4964417471112747`*^9}, {
3.496441910111503*^9, 3.4964419275315275`*^9}, {3.496441972821591*^9,
3.4964419754615946`*^9}, 3.4964524321966314`*^9, 3.4965289461639547`*^9, {
3.4978102518358145`*^9, 3.4978103941360135`*^9}, {3.4978119614426117`*^9,
3.4978119879026484`*^9}, {3.54181087288205*^9, 3.54181087288205*^9}, {
3.5546870575891943`*^9, 3.5546870575891943`*^9}, {3.5605459529753933`*^9,
3.560545953875395*^9}}],
Cell[BoxData[
RowBox[{
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}], ")"}], "m"],
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}],
RowBox[{"\[DifferentialD]",
RowBox[{"x", " ", "\[LongRightArrow]", " ",
RowBox[{"-",
FractionBox[
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}], ")"}], "m"], " ",
RowBox[{"Cos", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], "f"]}]}]}]}]}], "+",
RowBox[{
FractionBox[
RowBox[{"d", " ", "m"}], "f"],
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}], ")"}],
RowBox[{"m", "-", "1"}]], " ",
RowBox[{"Cos", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}],
RowBox[{"\[DifferentialD]", "x"}]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{{3.4796579732027807`*^9, 3.479658002474872*^9}, {
3.4796580599975853`*^9, 3.4796580609489536`*^9}, {3.479658295195784*^9,
3.47965829684816*^9}, 3.4796611938939075`*^9, 3.4796613924794593`*^9, {
3.479661443342597*^9, 3.479661446647349*^9}, {3.479661576554146*^9,
3.479661589302477*^9}, 3.479661847553824*^9, {3.4796622294729967`*^9,
3.4796622450654173`*^9}, {3.479686720424531*^9, 3.4796867204345455`*^9}, {
3.4796874646646957`*^9, 3.4796874745589232`*^9}, {3.492826573513727*^9,
3.492826578630536*^9}, {3.4928267070863624`*^9, 3.492826707460763*^9},
3.4928267903497095`*^9, {3.492829799151373*^9, 3.4928299617216005`*^9}, {
3.4940972077187414`*^9, 3.4940972347887793`*^9}, {3.496441851501421*^9,
3.496441872881451*^9}, {3.496528916553913*^9, 3.4965289272239285`*^9}, {
3.497576165747217*^9, 3.4975761801372375`*^9}, {3.4978101340656495`*^9,
3.4978101470356674`*^9}, {3.497810228295781*^9, 3.497810232715788*^9}, {
3.4978114755275273`*^9, 3.4978114885575457`*^9}, {3.56054598616544*^9,
3.560546006575468*^9}, {3.560546601776302*^9, 3.5605466057063074`*^9}, {
3.5605466472663655`*^9, 3.560546647766366*^9}, {3.6739260853672934`*^9,
3.6739260853872933`*^9}, {3.6739268070323257`*^9, 3.6739268075723267`*^9}},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"],
Cell["Program code:", "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.492804314166378*^9, 3.4928043441496305`*^9}, {
3.4928044532166224`*^9, 3.492804453513023*^9}, {3.492805162266266*^9,
3.492805165713872*^9}}],
Cell[BoxData[
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"c_.", "+",
RowBox[{"d_.", "*", "x_"}]}], ")"}], "^", "m_."}], "*",
RowBox[{"sin", "[",
RowBox[{"e_.", "+",
RowBox[{"f_.", "*", "x_"}]}], "]"}]}], ",", "x_Symbol"}], "]"}], " ", ":=",
"\n", " ",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"-",
RowBox[{
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", "*", "x"}]}], ")"}], "^", "m"}]}], "*",
RowBox[{
RowBox[{"Cos", "[",
RowBox[{"e", "+",
RowBox[{"f", "*", "x"}]}], "]"}], "/", "f"}]}], " ", "+", " ", "\n",
" ",
RowBox[{"d", "*",
RowBox[{"m", "/", "f"}], "*",
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", "*", "x"}]}], ")"}], "^",
RowBox[{"(",
RowBox[{"m", "-", "1"}], ")"}]}], "*",
RowBox[{"Cos", "[",
RowBox[{"e", "+",
RowBox[{"f", "*", "x"}]}], "]"}]}], ",", "x"}], "]"}]}]}], " ", "/;",
"\n",
RowBox[{
RowBox[{"FreeQ", "[",
RowBox[{
RowBox[{"{",
RowBox[{"c", ",", "d", ",", "e", ",", "f"}], "}"}], ",", "x"}], "]"}],
" ", "&&", " ",
RowBox[{"GtQ", "[",
RowBox[{"m", ",", "0"}], "]"}]}]}]}]], "Code",
CellChangeTimes->{{3.494097279728842*^9, 3.494097309778884*^9},
3.496441834031397*^9, 3.496442095051762*^9, 3.496528791863739*^9,
3.496528888643874*^9, 3.497575939976901*^9, 3.4975761146971455`*^9,
3.4978099270853596`*^9, 3.497810062495549*^9, 3.4978101813857155`*^9,
3.497811129647043*^9, 3.497811455437499*^9, {3.5418108290019884`*^9,
3.541810837512*^9}, {3.554685046223878*^9, 3.554685059713897*^9},
3.5546863420781927`*^9, 3.554686426938311*^9, 3.5546866181485786`*^9, {
3.560546037155511*^9, 3.5605460794755707`*^9}, 3.560548770569338*^9, {
3.560548819679407*^9, 3.56054885803946*^9}, {3.560548989149644*^9,
3.560548989449644*^9}, {3.6739261142243347`*^9, 3.673926144095377*^9},
3.6739263955617356`*^9, {3.673926812005333*^9, 3.6739268165353394`*^9},
3.697087109113641*^9, {3.715370088395056*^9, 3.7153700902321606`*^9}},
Background->GrayLevel[0.85]],
Cell["", "Subsubsection",
CellDingbat->None,
CellChangeTimes->{3.4796643211106243`*^9}]
}, Closed]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"\t\t\t",
RowBox[{Cell[TextData[StyleBox["2:",
FontFamily->"Arial",
FontColor->RGBColor[1, 0, 0]]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}], ")"}], "m"],
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"],
StyleBox[" ",
FontFamily->"Arial",
FontWeight->"Plain"], Cell[TextData[Cell[BoxData[
RowBox[{"m", "<",
RowBox[{"-", "1"}]}]]]], "None"]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.4964645213514385`*^9,
3.5192470594155855`*^9, {3.519247288125906*^9, 3.5192473207459517`*^9}, {
3.519247363296011*^9, 3.519247363796012*^9}, 3.519258420199427*^9,
3.5192584863895197`*^9, {3.519320760160028*^9, 3.519320767367241*^9},
3.5193299099191504`*^9, {3.5193300315093203`*^9, 3.519330031709321*^9}, {
3.5193323099968634`*^9, 3.5193324414114943`*^9}, {3.5193415804486094`*^9,
3.5193415824298124`*^9}, {3.5193459537101994`*^9,
3.5193459567210045`*^9}, {3.5193514074002457`*^9,
3.5193514076802464`*^9}, {3.5194037987985263`*^9, 3.519403799124545*^9},
3.519410735765964*^9, {3.5233155477729936`*^9, 3.5233155497329965`*^9}, {
3.5233157343632545`*^9, 3.5233157343632545`*^9}, 3.5239204163859615`*^9, {
3.5239209756969433`*^9, 3.523920976851345*^9}, {3.5239210574690866`*^9,
3.5239210738491154`*^9}, {3.529529514995768*^9, 3.52952953897301*^9}, {
3.529530096003188*^9, 3.5295300961903887`*^9}, 3.534007429411028*^9, {
3.5415552865111437`*^9, 3.541555295262759*^9}, {3.541555421591781*^9,
3.5415554284869933`*^9}, {3.541555475521076*^9, 3.541555531447174*^9}, {
3.5416256658935328`*^9, 3.541625666122286*^9}, {3.5416257625061736`*^9,
3.5416257625061736`*^9}, {3.541626016048726*^9, 3.5416260258896933`*^9},
3.5417941774174232`*^9, {3.5417946432380757`*^9, 3.541794658938098*^9}, {
3.5418034359316382`*^9, 3.541803436111638*^9}, 3.541810200781109*^9,
3.541810482861504*^9, {3.54181073012185*^9, 3.5418107354118576`*^9}, {
3.541811241362566*^9, 3.5418112420925665`*^9}, {3.5418956097223225`*^9,
3.541895609912323*^9}, {3.5533052545965614`*^9, 3.553305254826562*^9},
3.553307830110167*^9, {3.5533096060526533`*^9, 3.5533096062226534`*^9}, {
3.5546827405027494`*^9, 3.55468274073275*^9}, {3.554686950229044*^9,
3.5546869868490953`*^9}, {3.5601872308971663`*^9,
3.5601872310531664`*^9}, {3.5601882910906286`*^9, 3.5601882912466288`*^9},
3.5605384034202795`*^9, {3.560546169825697*^9, 3.5605461832257156`*^9},
3.560546365455971*^9, 3.5605466120963163`*^9, 3.5605491851199183`*^9, {
3.5605492457300034`*^9, 3.5605492459300036`*^9}, 3.590637894184286*^9, {
3.6735672258826385`*^9, 3.67356722608565*^9}, {3.6737510291860123`*^9,
3.673751030986115*^9}, 3.6739260854072933`*^9, 3.674055957715138*^9},
FontSize->12,
FontWeight->"Bold"],
Cell["Reference: CRC 405, A&S 4.3.120", "Subsubsection",
CellChangeTimes->{
3.4964418130913677`*^9, {3.496442428087432*^9, 3.4964424330170403`*^9},
3.496528894323882*^9, 3.4975761400971813`*^9, 3.497810067935557*^9,
3.497810452426095*^9, 3.4978120457827296`*^9}],
Cell["Reference: CRC 406, A&S 4.3.124", "Subsubsection",
CellChangeTimes->{
3.4964418130913677`*^9, {3.496442428087432*^9, 3.4964424330170403`*^9},
3.496528894323882*^9, 3.4975761400971813`*^9, 3.497810067935557*^9,
3.497810452426095*^9, 3.4978120457827296`*^9, 3.497983283827424*^9, {
3.5605462207957687`*^9, 3.5605462228457713`*^9}}],
Cell["Derivation: Integration by parts", "Subsubsection",
CellChangeTimes->{
3.4964418130913677`*^9, {3.496442428087432*^9, 3.4964424330170403`*^9},
3.496528894323882*^9, {3.497575979956957*^9, 3.4975760172870092`*^9},
3.497809962345409*^9, 3.4978100933655925`*^9, 3.497810195205735*^9, {
3.497810459466105*^9, 3.497810511846178*^9}, 3.4978120506627364`*^9}],
Cell[TextData[{
"Rule: If ",
Cell[BoxData[
RowBox[{"m", "<",
RowBox[{"-", "1"}]}]]],
", then"
}], "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.4964417379912624`*^9, 3.4964417471112747`*^9}, {
3.496441910111503*^9, 3.4964419275315275`*^9}, {3.496441972821591*^9,
3.4964419754615946`*^9}, 3.4964524321966314`*^9, 3.4965289461639547`*^9, {
3.4978102518358145`*^9, 3.4978103941360135`*^9}, {3.4978105556962395`*^9,
3.4978105670162554`*^9}, {3.4978121595028887`*^9,
3.4978121713129053`*^9}, {3.497812202812949*^9, 3.497812241873004*^9}, {
3.5418107635318966`*^9, 3.5418107635318966`*^9}, {3.5546869962991085`*^9,
3.5546869962991085`*^9}, {3.560546186825721*^9, 3.5605461887457237`*^9}}],
Cell[BoxData[
RowBox[{
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}], ")"}], "m"],
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}],
RowBox[{"\[DifferentialD]",
RowBox[{"x", " ", "\[LongRightArrow]", " ",
FractionBox[
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}], ")"}],
RowBox[{"m", "+", "1"}]], " ",
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}],
RowBox[{"d",
RowBox[{"(",
RowBox[{"m", "+", "1"}], ")"}]}]]}]}]}]}], "-",
RowBox[{
FractionBox["f",
RowBox[{"d",
RowBox[{"(",
RowBox[{"m", "+", "1"}], ")"}]}]],
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}], ")"}],
RowBox[{"m", "+", "1"}]], " ",
RowBox[{"Cos", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}],
RowBox[{"\[DifferentialD]", "x"}]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{{3.4796579732027807`*^9, 3.479658002474872*^9}, {
3.4796580599975853`*^9, 3.4796580609489536`*^9}, {3.479658295195784*^9,
3.47965829684816*^9}, 3.4796611938939075`*^9, 3.4796613924794593`*^9, {
3.479661443342597*^9, 3.479661446647349*^9}, {3.479661576554146*^9,
3.479661589302477*^9}, 3.479661847553824*^9, {3.4796622294729967`*^9,
3.4796622450654173`*^9}, {3.479686720424531*^9, 3.4796867204345455`*^9}, {
3.4796874646646957`*^9, 3.4796874745589232`*^9}, {3.492826573513727*^9,
3.492826578630536*^9}, {3.4928267070863624`*^9, 3.492826707460763*^9},
3.4928267903497095`*^9, {3.492829799151373*^9, 3.4928299617216005`*^9}, {
3.4940972077187414`*^9, 3.4940972347887793`*^9}, {3.496441851501421*^9,
3.496441872881451*^9}, {3.496528916553913*^9, 3.4965289272239285`*^9}, {
3.497576165747217*^9, 3.4975761801372375`*^9}, {3.4978101340656495`*^9,
3.4978101470356674`*^9}, {3.497810228295781*^9, 3.497810232715788*^9},
3.497810535736212*^9, {3.497812078252775*^9, 3.497812093972797*^9}, {
3.5605462286757793`*^9, 3.56054623630579*^9}, {3.56054661463632*^9,
3.560546617856324*^9}, {3.5605466551163764`*^9, 3.5605466647863903`*^9}, {
3.6739260854272933`*^9, 3.673926085437293*^9}, 3.673926826340353*^9},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"],
Cell["Program code:", "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.492804314166378*^9, 3.4928043441496305`*^9}, {
3.4928044532166224`*^9, 3.492804453513023*^9}, {3.492805162266266*^9,
3.492805165713872*^9}}],
Cell[BoxData[
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"c_.", "+",
RowBox[{"d_.", "*", "x_"}]}], ")"}], "^", "m_"}], "*",
RowBox[{"sin", "[",
RowBox[{"e_.", "+",
RowBox[{"f_.", "*", "x_"}]}], "]"}]}], ",", "x_Symbol"}], "]"}], " ", ":=",
"\n", " ",
RowBox[{
RowBox[{
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", "*", "x"}]}], ")"}], "^",
RowBox[{"(",
RowBox[{"m", "+", "1"}], ")"}]}], "*",
RowBox[{
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", "*", "x"}]}], "]"}], "/",
RowBox[{"(",
RowBox[{"d", "*",
RowBox[{"(",
RowBox[{"m", "+", "1"}], ")"}]}], ")"}]}]}], " ", "-", "\n", " ",
RowBox[{
RowBox[{"f", "/",
RowBox[{"(",
RowBox[{"d", "*",
RowBox[{"(",
RowBox[{"m", "+", "1"}], ")"}]}], ")"}]}], "*",
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", "*", "x"}]}], ")"}], "^",
RowBox[{"(",
RowBox[{"m", "+", "1"}], ")"}]}], "*",
RowBox[{"Cos", "[",
RowBox[{"e", "+",
RowBox[{"f", "*", "x"}]}], "]"}]}], ",", "x"}], "]"}]}]}], " ", "/;",
"\n",
RowBox[{
RowBox[{"FreeQ", "[",
RowBox[{
RowBox[{"{",
RowBox[{"c", ",", "d", ",", "e", ",", "f"}], "}"}], ",", "x"}], "]"}],
" ", "&&", " ",
RowBox[{"LtQ", "[",
RowBox[{"m", ",",
RowBox[{"-", "1"}]}], "]"}]}]}]}]], "Code",
CellChangeTimes->{{3.494097279728842*^9, 3.494097309778884*^9},
3.496441834031397*^9, 3.496442095051762*^9, 3.496528791863739*^9,
3.496528888643874*^9, 3.497575939976901*^9, 3.4975761146971455`*^9,
3.4978099270853596`*^9, 3.497810062495549*^9, 3.4978101813857155`*^9,
3.497810442686082*^9, 3.49781112699704*^9, 3.497812038232719*^9, {
3.5418106440117297`*^9, 3.541810697081804*^9}, {3.554685146134018*^9,
3.5546851521040263`*^9}, 3.554686438188327*^9, 3.554686635368603*^9, {
3.560546202475743*^9, 3.56054620758575*^9}, {3.560546239695795*^9,
3.5605462760358458`*^9}, 3.560548775469345*^9, 3.5605488237994127`*^9, {
3.560548866999473*^9, 3.5605488686894755`*^9}, {3.5605490830597754`*^9,
3.5605490920897884`*^9}, {3.6739261142543344`*^9, 3.6739261441153774`*^9},
3.6739263955817356`*^9, 3.673926830110358*^9, 3.6970871103527117`*^9, {
3.7153700944144*^9, 3.7153700969315443`*^9}},
Background->GrayLevel[0.85]],
Cell["", "Subsubsection",
CellDingbat->None,
CellChangeTimes->{3.4796643211106243`*^9}]
}, Closed]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"\t\t\t",
RowBox[{Cell[TextData[StyleBox["3.",
FontFamily->"Arial"]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
FractionBox[
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}],
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}]],
RowBox[{"\[DifferentialD]", "x"}]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193415004828687`*^9, 3.5193415113404875`*^9}, {
3.5193513965602303`*^9, 3.519351397420232*^9}, {3.5194037839416766`*^9,
3.5194037847117205`*^9}, 3.52105258275843*^9, 3.5210531741726685`*^9, {
3.521057461672199*^9, 3.5210574760242243`*^9}, {3.521059881564049*^9,
3.521059886088057*^9}, {3.5213902158895197`*^9, 3.521390217543123*^9}, {
3.521390827878595*^9, 3.521390829376197*^9}, {3.5214688792561245`*^9,
3.521468879443325*^9}, {3.523320201951167*^9, 3.523320202247567*^9}, {
3.5288596764894824`*^9, 3.5288596768094826`*^9}, {3.529196266260353*^9,
3.5291962665099535`*^9}, {3.5291997050223927`*^9,
3.5291997052563934`*^9}, {3.529201346457276*^9, 3.529201347252877*^9}, {
3.529285041073242*^9, 3.5292850412632427`*^9}, {3.529285215443486*^9,
3.529285215443486*^9}, {3.5295115356999426`*^9, 3.5295115433443794`*^9}, {
3.529521412127842*^9, 3.529521414647986*^9}, {3.529529429975619*^9,
3.529529432955224*^9}, 3.5340074894011116`*^9, 3.5415537711400824`*^9, {
3.5415538409034047`*^9, 3.541553841106205*^9}, {3.5415613109389257`*^9,
3.5415613113913264`*^9}, {3.5416243984807787`*^9,
3.5416244195599437`*^9}, {3.5416244713301*^9, 3.5416244737561426`*^9},
3.541626365649132*^9, {3.541628897885443*^9, 3.5416288994754457`*^9},
3.5416290696456833`*^9, 3.541793672066716*^9, 3.541802112599786*^9,
3.5418030023610315`*^9, {3.5533052475865517`*^9, 3.5533052477965517`*^9},
3.5533078274701633`*^9, 3.5605383997302747`*^9, {3.560545556384838*^9,
3.5605455566448383`*^9}, 3.5605463622459664`*^9, 3.5605464043460255`*^9,
3.560549182919915*^9, 3.590637890414281*^9, {3.6735672197502875`*^9,
3.673567220002302*^9}, {3.6737510461649833`*^9, 3.67375104838311*^9},
3.6739260854572935`*^9, 3.6740559583079395`*^9},
FontSize->12,
FontWeight->"Bold"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"\t\t\t\t",
RowBox[{Cell[TextData[StyleBox["1:",
FontFamily->"Arial",
FontColor->RGBColor[1, 0, 0]]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
FractionBox[
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}],
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}]],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"],
StyleBox[" ",
FontFamily->"Arial",
FontWeight->"Plain"], Cell[TextData[Cell[BoxData[
RowBox[{
RowBox[{
RowBox[{"d", " ", "e"}], "-",
RowBox[{"c", " ", "f"}]}], "\[Equal]", "0"}]]]],
"None"]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.4964645213514385`*^9,
3.5192470594155855`*^9, {3.519247288125906*^9, 3.5192473207459517`*^9}, {
3.5192504337891226`*^9, 3.5192504436696877`*^9}, {3.519320736057986*^9,
3.5193207456364026`*^9}, {3.5193282921909866`*^9,
3.5193283252786446`*^9}, {3.5193283634207115`*^9,
3.5193283676639194`*^9}, {3.5193286295571795`*^9,
3.5193286611160345`*^9}, {3.519341560355774*^9, 3.5193415713849936`*^9}, {
3.5193514022902384`*^9, 3.5193514024302387`*^9}, {3.5194037903190413`*^9,
3.519403790599057*^9}, 3.51941073361316*^9, 3.5196771044605494`*^9, {
3.5233155369029784`*^9, 3.5233155369029784`*^9}, 3.5239204146855583`*^9,
3.5239297857543354`*^9, 3.5239298325544176`*^9, {3.5295294635000772`*^9,
3.5295294742328963`*^9}, 3.541555209727809*^9, 3.5416244786643567`*^9,
3.541626372069141*^9, 3.541628908255458*^9, 3.541629070725685*^9,
3.5417936884967394`*^9, {3.5533052637165737`*^9, 3.5533052639165745`*^9},
3.553307828150164*^9, 3.5605384003502755`*^9, {3.560545558084841*^9,
3.5605455583248405`*^9}, 3.560546362995968*^9, 3.560546405666027*^9, {
3.5605473866674004`*^9, 3.560547398197417*^9}, 3.5605491933699303`*^9,
3.590637891054282*^9, {3.6735672208013477`*^9, 3.67356722101536*^9},
3.673751065323079*^9, 3.6739260854672937`*^9, {3.6739268862465305`*^9,
3.6739268862465305`*^9}, 3.67405595886954*^9, 3.697507217926658*^9,
3.6975102381464047`*^9},
FontSize->12,
FontWeight->"Bold"],
Cell["Derivation: Primitive rule", "Subsubsection",
CellChangeTimes->{
3.4964418130913677`*^9, {3.496442428087432*^9, 3.4964424330170403`*^9},
3.496528894323882*^9, 3.497575979956957*^9}],
Cell[TextData[{
"Basis: ",
Cell[BoxData[
RowBox[{
RowBox[{"SinIntegral", "[",
RowBox[{"\[ImaginaryI]", " ", "z"}], "]"}], "\[Equal]",
RowBox[{"\[ImaginaryI]", " ",
RowBox[{"SinhIntegral", "[", "z", "]"}]}]}]]]
}], "Subsubsection",
CellChangeTimes->{
3.4964418130913677`*^9, {3.496442428087432*^9, 3.4964424330170403`*^9},
3.496528894323882*^9, {3.497575979956957*^9, 3.4975760172870092`*^9},
3.497809962345409*^9, 3.497811178197111*^9, {3.6740670964221115`*^9,
3.674067097492113*^9}, {3.697498247358571*^9, 3.697498247358571*^9}, {
3.69749844490187*^9, 3.697498450462188*^9}, {3.6974985211152287`*^9,
3.6974985211152287`*^9}, {3.6975068626823397`*^9, 3.6975068626823397`*^9}}],
Cell[TextData[{
"Basis: ",
Cell[BoxData[
RowBox[{
RowBox[{
SubscriptBox["\[PartialD]", "x"],
RowBox[{"CosIntegral", "[",
RowBox[{"\[ImaginaryI]", " ",
RowBox[{"F", "[", "x", "]"}]}], "]"}]}], "\[Equal]",
RowBox[{
SubscriptBox["\[PartialD]", "x"],
RowBox[{"CoshIntegral", "[",
RowBox[{"F", "[", "x", "]"}], "]"}]}], "\[Equal]",
RowBox[{
SubscriptBox["\[PartialD]", "x"],
RowBox[{"CoshIntegral", "[",
RowBox[{"-",
RowBox[{"F", "[", "x", "]"}]}], "]"}]}]}]]]
}], "Subsubsection",
CellChangeTimes->{
3.4964418130913677`*^9, {3.496442428087432*^9, 3.4964424330170403`*^9},
3.496528894323882*^9, {3.497575979956957*^9, 3.4975760172870092`*^9},
3.497809962345409*^9, 3.497811178197111*^9, {3.6740670964221115`*^9,
3.674067097492113*^9}, {3.697498247358571*^9, 3.697498247358571*^9}, {
3.69749844490187*^9, 3.697498450462188*^9}, {3.6974985211152287`*^9,
3.6974985211152287`*^9}, {3.6974992322519035`*^9,
3.6974992322519035`*^9}, {3.697500366393773*^9, 3.697500366393773*^9}, {
3.6975014434063745`*^9, 3.6975014434063745`*^9}, {3.697506929040135*^9,
3.697506929040135*^9}}],
Cell[TextData[{
"Rule: If ",
Cell[BoxData[
RowBox[{
RowBox[{
RowBox[{"d", " ", "e"}], "-",
RowBox[{"c", " ", "f"}]}], "\[Equal]", "0"}]]],
", then"
}], "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.4964417379912624`*^9, 3.4964417471112747`*^9}, {
3.496441910111503*^9, 3.4964419275315275`*^9}, {3.496441972821591*^9,
3.4964419754615946`*^9}, 3.4964524321966314`*^9, 3.4965289461639547`*^9, {
3.4978102518358145`*^9, 3.4978103941360135`*^9}, {3.4978119614426117`*^9,
3.4978119879026484`*^9}, {3.54181087288205*^9, 3.54181087288205*^9}, {
3.5546870575891943`*^9, 3.5546870575891943`*^9}, {3.5605459529753933`*^9,
3.560545953875395*^9}, {3.560547364057369*^9, 3.560547364057369*^9}, {
3.5605474107974343`*^9, 3.5605474116274357`*^9}, {3.6739269017665524`*^9,
3.6739269017665524`*^9}}],
Cell[BoxData[
RowBox[{"\[Integral]",